🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / androidApp / src / fdroid / kotlin / org / meshtastic / app / map / component / DownloadButton.kt
Displaying Raw • Download
androidApp/src/fdroid/kotlin/org/meshtastic/app/map/component/DownloadButton.kt 83a778a842822a709c80eacf137fb09d0aab5ae8 (83a778a8) Text, 2.34 KB
T8b949e/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787org.meshtastic.app.map.component
Tff7b72import T7ee787androidx.compose.animation.AnimatedVisibility
Tff7b72import T7ee787androidx.compose.animation.core.FastOutSlowInEasing
Tff7b72import T7ee787androidx.compose.animation.core.tween
Tff7b72import T7ee787androidx.compose.animation.slideInHorizontally
Tff7b72import T7ee787androidx.compose.animation.slideOutHorizontally
Tff7b72import T7ee787androidx.compose.material3.FloatingActionButton
Tff7b72import T7ee787androidx.compose.material3.Icon
Tff7b72import T7ee787androidx.compose.material3.MaterialTheme
Tff7b72import T7ee787androidx.compose.runtime.Composable
Tff7b72import T7ee787androidx.compose.ui.Modifier
Tff7b72import T7ee787androidx.compose.ui.draw.scale
Tff7b72import T7ee787org.jetbrains.compose.resources.stringResource
Tff7b72import T7ee787org.meshtastic.core.resources.Res
Tff7b72import T7ee787org.meshtastic.core.resources.map_download_region
Tff7b72import T7ee787org.meshtastic.core.ui.icon.Download
Tff7b72import T7ee787org.meshtastic.core.ui.icon.MeshtasticIcons
Tf0883e@Composable
Tff7b72fun Td2a8ffDownloadButtonTb4b4b4(Te6edf3enabledTb4b4b4: Tffa657BooleanTb4b4b4, Te6edf3onClickTb4b4b4: Tb4b4b4(Tb4b4b4) Tff7b72-Tff7b72> Tffa657UnitTb4b4b4) Tb4b4b4{
Te6edf3AnimatedVisibilityTb4b4b4(
Te6edf3visible Tff7b72= Te6edf3enabledTb4b4b4,
Te6edf3enter Tff7b72=
Te6edf3slideInHorizontallyTb4b4b4(
Te6edf3initialOffsetX Tff7b72= Tb4b4b4{ Tffa657it Tb4b4b4}Tb4b4b4,
Te6edf3animationSpec Tff7b72= Te6edf3tweenTb4b4b4(Te6edf3durationMillis Tff7b72= T79c0ff6T79c0ff0T79c0ff0Tb4b4b4, Te6edf3easing Tff7b72= Te6edf3FastOutSlowInEasingTb4b4b4)Tb4b4b4,
Tb4b4b4)Tb4b4b4,
Te6edf3exit Tff7b72=
Te6edf3slideOutHorizontallyTb4b4b4(
Te6edf3targetOffsetX Tff7b72= Tb4b4b4{ Tffa657it Tb4b4b4}Tb4b4b4,
Te6edf3animationSpec Tff7b72= Te6edf3tweenTb4b4b4(Te6edf3durationMillis Tff7b72= T79c0ff6T79c0ff0T79c0ff0Tb4b4b4, Te6edf3easing Tff7b72= Te6edf3FastOutSlowInEasingTb4b4b4)Tb4b4b4,
Tb4b4b4)Tb4b4b4,
Tb4b4b4) Tb4b4b4{
Te6edf3FloatingActionButtonTb4b4b4(Te6edf3onClick Tff7b72= Te6edf3onClickTb4b4b4, Te6edf3contentColor Tff7b72= Te6edf3MaterialThemeTb4b4b4.Te6edf3colorSchemeTb4b4b4.Te6edf3primaryTb4b4b4) Tb4b4b4{
Te6edf3IconTb4b4b4(
Te6edf3imageVector Tff7b72= Te6edf3MeshtasticIconsTb4b4b4.Te6edf3DownloadTb4b4b4,
Te6edf3contentDescription Tff7b72= Te6edf3stringResourceTb4b4b4(Te6edf3ResTb4b4b4.Te6edf3stringTb4b4b4.Te6edf3map_download_regionTb4b4b4)Tb4b4b4,
Te6edf3modifier Tff7b72= Te6edf3ModifierTb4b4b4.Te6edf3scaleTb4b4b4(T79c0ff1.25fTb4b4b4)Tb4b4b4,
Tb4b4b4)
Tb4b4b4}
Tb4b4b4}
Tb4b4b4}
Served by rngit 1.5.0 - Generated in 0.05s